home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 17 / bj_220.zip / PRINTBJ.BAT < prev    next >
DOS Batch File  |  1991-05-05  |  1KB  |  42 lines

  1. echo off
  2. cls
  3. echo  
  4. echo  
  5. if not ""=="%1" goto sayuser
  6. echo     Printing to STANDARD PRINTER (Usually LPT1:)
  7. goto msg
  8. :sayuser
  9. echo     Printing to %1
  10. :msg
  11. echo  
  12. echo     Make sure your printer has at least 36 sheets of paper, and is set
  13. echo     to the TOP of the page.
  14. echo            ───
  15. echo  
  16. echo     If your printer is NOT connected to LPT1: cancel this operation
  17. echo     and rerun PRINTBJ followed by the name of the device you wish to
  18. echo     use for printing.  For example, to use LPT2: type
  19. echo  
  20. echo     PRINTBJ LPT2:     (include the ":")
  21. echo     
  22. echo     If you wish to cancel this operation press [Ctrl] + [C] then [Y]
  23. echo     otherwise,
  24. echo    
  25. pause
  26. if not ""==%1 goto user
  27. copy bj-docs.txt prn
  28. goto end
  29. :user
  30. copy bj-docs.txt %1
  31. :end
  32. echo  
  33. echo  
  34. echo     Printing is now complete.
  35. echo     Please take a moment to read over the documentation.
  36. echo     It contains useful information on Blackjack and BlackJack!.
  37. echo  
  38. echo                      ┌────────────────────────────────────┐
  39. echo                      │ Thank you for examining BlackJack! │
  40. echo                      │ Your support makes ShareWare work. │
  41. echo                      └────────────────────────────────────┘
  42.